home *** CD-ROM | disk | FTP | other *** search
/ Material Dictionary 116:…od - Table of Hospitality / Material Dictionary 116: Wine & Food - Table of Hospitality.iso / pc / sozai.exe / sozai.dxr / 00009_scrollÉoÅ[.ls < prev    next >
Encoding:
Text File  |  1999-12-14  |  468 b   |  22 lines

  1. on mouseDown
  2.   global scrollthumbsp
  3.   if the optionDown then
  4.     thumbpressed(the mouseV - (the height of sprite scrollthumbsp / 2))
  5.     exit
  6.   end if
  7.   if the mouseV < the top of sprite scrollthumbsp then
  8.     repeat while the stillDown
  9.       if rollOver(the clickOn) then
  10.         pagedown()
  11.       end if
  12.     end repeat
  13.   else
  14.     repeat while the stillDown
  15.       if rollOver(the clickOn) then
  16.         pageup()
  17.       end if
  18.     end repeat
  19.   end if
  20.   indicateoff()
  21. end
  22.